home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_6.zip / DOS.C < prev    next >
C/C++ Source or Header  |  1993-05-02  |  1KB  |  39 lines

  1. /*
  2.     GWAda Development Environment for 386/486 PCs   
  3.     Copyright (C) 1993, Arthur Vargas Lopes  & Michael Bliss Feldman
  4.                         vlopes@vortex.ufrgs.br mfeldman@seas.gwu.edu
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; version 2 of the License.    
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. /*  Dos.c  */
  21.  
  22. #include <externs.h>
  23.  
  24.  
  25.  
  26. void AVL_DOS_CMD() 
  27.     AVL_WIN_PTR w;
  28.     short old_c;
  29.     w = AVL_MAKE_WINDOW("",1,1,25,80,avl_wnd_bk_color,avl_wnd_color);
  30.     _settextrows( 25 );
  31.     _clearscreen( _GCLEARSCREEN );
  32.     old_c = _settextcursor(0x0707);
  33.     printf("\nType EXIT to return to GWAda!\n");
  34.     system("command");
  35.     _settextcursor(old_c);
  36.     AVL_DEL_WINDOW(w);
  37. }
  38.